Skip to main content
POST
/
action
/
meeting_followup_load_followup_context
[F2] Load Followup Context
curl --request POST \
  --url https://api-lr.agent.ai/v1/action/meeting_followup_load_followup_context \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "output_variable_name": "followup_context",
  "primary_role": "{{primary_role}}",
  "goals": "{{goals}}",
  "user_context_data": "{{user.context}}",
  "user_email": "{{_google_email}}"
}
'
{
  "status": 123,
  "response": {}
}

Authorizations

Authorization
string
header
required

Bearer token from your account (https://agent.ai/user/integrations#api)

Body

application/json
output_variable_name
string
default:followup_context
required

Variable name to store the user context.

Pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
primary_role
string
default:{{primary_role}}

User's role (e.g., SDR, AE, CSM, Solutions Engineer). If empty, will be inferred from user context.

goals
string
default:{{goals}}

User's coaching/improvement goals. If empty, will be inferred from role.

user_context_data
string
default:{{user.context}}

User profile data for role/goals inference when not explicitly provided. Usually {{user.context}}.

user_email
string
default:{{_google_email}}

User's email address for identification.

Response

Successful response

status
integer<int32>

HTTP status code of the action response

response
object

Response data from the action